const github.com/klauspost/compress/huff0.tableLogMax
17 uses
github.com/klauspost/compress/huff0 (current package)
compress.go#L443: if tableLog > tableLogMax {
compress.go#L444: tableLog = tableLogMax
compress.go#L533: if maxNbBits > tableLogMax {
compress.go#L534: return fmt.Errorf("internal error: maxNbBits (%d) > tableLogMax (%d)", maxNbBits, tableLogMax)
compress.go#L536: var nbPerRank [tableLogMax + 1]uint16
compress.go#L642: var rankLast [tableLogMax + 2]uint32
compress.go#L681: for (nBitsToDecrease <= tableLogMax) && (rankLast[nBitsToDecrease] == noSymbol) {
decompress.go#L77: if v > tableLogMax {
decompress.go#L92: if tableLog > tableLogMax {
decompress.go#L130: tSize := 1 << tableLogMax
decompress_amd64.go#L82: const tlSize = 1 << tableLogMax
decompress_amd64.go#L183: const tlSize = 1 << tableLogMax
huff0.go#L21: tableLogMax = 11
huff0.go#L147: if s.TableLog > tableLogMax || s.TableLog < minTablelog {
huff0.go#L148: return nil, fmt.Errorf(" invalid tableLog %d (%d -> %d)", s.TableLog, minTablelog, tableLogMax)
huff0.go#L183: bitsToWeight [tableLogMax + 1]byte
huff0.go#L253: bitsToWeight [tableLogMax + 1]byte
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |